home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Programming / Comal / Prefs / Texts / Comal.Interpreter.English < prev   
Encoding:
Text File  |  2001-04-11  |  5.5 KB  |  150 lines

  1. /************************************************************************/
  2. /*                                                                      */
  3. /*             Texts used in Comal interpreter                          */
  4. /*                  version 92.12.09                                    */
  5. /*                                                                      */
  6. /************************************************************************/
  7.  
  8. /* PASS window texts      */
  9. #000  "CON:0/10/640/150/Comal PASS window"
  10. #001  "\nPress <RETURN> to continue"
  11.  
  12. /* Error requester texts  */
  13. #002  "Program"
  14. #003  "\nModule"
  15. #004  "\nLine"
  16.  
  17. /* Execution errors       */
  18. #005  "STOP statement executed"
  19. #006  "The program was breaked"
  20. #007  "Tracing step executed"
  21. #008  "Break point reached"
  22. #009  "No more room on stack"
  23. #010  "No more room in workspace"
  24. #011  "The name is already defined"
  25. #012  "Object initialization error"
  26. #013  "The name is not defined"
  27. #014  "The field name is not defined"
  28. #015  "IMPORT illegal at this place"
  29. #016  "The POINTER does not point at anything"
  30. #017  "The POINTER points at an odd address"
  31. #018  "The expression cannot be calculated to an address"
  32. #019  "Number/text mismatch"
  33. #020  "Text arrays with different text lengths"
  34. #021  "Illegal type"
  35. #022  "Method table(s) in data area of the structure"
  36. #023  "Function/procedure argument has wrong type"
  37. #024  "Wrong number of arguments in function/procedure call"
  38. #025  "Not name for a procedure"
  39. #026  "The type cannot be calculated to a value"
  40. #027  "The type cannot be assigned a value"
  41. #028  "Must be of number type"
  42. #029  "A pointer can only be assigned a value of type ULONG"
  43. #030  "Not an array"
  44. #031  "Not a STRUCture"
  45. #032  "Error in range specification for a text"
  46. #033  "The array has not that number of dimensions"
  47. #034  "The index must be a number"
  48. #035  "The index value out of range for the array"
  49. #036  "Out of range"
  50. #037  "OTHERWISE part missing"
  51. #038  "RETURN missing in FUNCtion"
  52. #039  "Digit missing in number conversion"
  53. #040  "Number too big"
  54. #041  "Division by zero"
  55. #042  "Outside the range of that type"
  56. #043  "Illegal function argument"
  57. #044  "No DATA following the specified label"
  58. #045  "No more data in DATA queue"
  59. #046  "Attempt to read/write beyond the record"
  60. #047  "Attempt to read beyond the end of file mark"
  61. #048  "Error in PRINT USING format string"
  62. #049  "An IO unit cannot be opened as a RANDOM file"
  63. #050  "Program execution cannot be resumed"
  64. #051  "Tracing cannot be resumed"
  65. #052  ""
  66. #053  "Error during opening a stream"
  67. #054  "The stream number is already used"
  68. #055  "No room for more files"
  69. #056  "The IO unit cannot be used in this way"
  70. #057  "The specified stream is not opened"
  71. #058  "Error during writing to an IO unit"
  72. #059  "Error during reading from an IO unit"
  73. #060  "Attempt to position out side the file"
  74. #061  "No error routine with this IO unit"
  75. #062  "The IO unit is not ready"
  76. #063  "The file already exist"
  77. #064  "The file cannot be found"
  78. #065  "The file is already open"
  79. #066  "Error during writing to a file"
  80. #067  "The subdirectory could not be created"
  81. #068  "Could not RENAME the file"
  82. #069  "The subdirectory cannot be found"
  83. #070  "Not a subdirectory"
  84.  
  85. /* Pre pass scan errors   */
  86. #071  "End of program expected"
  87. #072  "Two labels with the same name in the same scope"
  88. #073  "Label in GOTO or RESTORE not found"
  89. #074  "No more memory"
  90. #075  "EXIT only inside loops"
  91. #076  "RETRY only in HANDLER part of TRAP structure"
  92. #077  "A module must start with the keyword MODULE"
  93. #078  "ENDFOR expected"
  94. #079  "UNTIL expected"
  95. #080  "ENDWHILE expected"
  96. #081  "ENDLOOP expected"
  97. #082  "ENDIF expected"
  98. #083  "WHEN expected"
  99. #084  "WHEN-expressions in same CASE must have same type"
  100. #085  "ENDCASE expected"
  101. #086  "HANDLER expected"
  102. #087  "ENDTRAP expected"
  103. #088  "ENDPROC expected"
  104. #089  "ENDFUNC expected"
  105. #090  "A module must end with an ENDMODULE line"
  106. #091  "ENDSTRUC expected"
  107. #092  "The name not the same as in FOR/FUNC/PROC/MODULE"
  108. #093  "The statement cannot be used in IF structure"
  109. #094  "The statement cannot be used in loop structure"
  110. #095  "The statement cannot be used between CASE and WHEN"
  111. #096  "The statement cannot be used in WHEN structure"
  112. #097  "The statement cannot be used in HANDLER structure"
  113. #098  "The statement cannot be used in PROCedure"
  114. #099  "The statement cannot be used in text FUNCtion"
  115. #100  "The statement cannot be used in number FUNCtion"
  116. #101  "The statement cannot be used in open FUNC/PROC"
  117. #102  "The statement cannot be used in main program"
  118. #103  "The statement cannot be used in a module"
  119. #104  "The statement cannot be used in a STRUCture"
  120. #105  ""
  121. #106  ""
  122. #107  ""
  123. #108  ""
  124. #109  "The statement can only be used in  open FUNC/PROC"
  125. #110  "Udefined type"
  126. #111  "The type must be STRING"
  127. #112  "The type must be INTEGER"
  128. #113  "The type cannot be STRING"
  129. #114  "Illegal pointer type"
  130. #115  "Illegal type af array element"
  131. #116  "Illegal type"
  132. #117  "Cannot read the module"
  133. #118  "The module with the specified name not found"
  134. #119  "SIGNAL procedures only in modules"
  135. #120  "IO procedures only in structures"
  136. #121  "Error during initialization of a module"
  137. #122  "The field dimensions must be integer constants"
  138. #123  "The name is already used in this scope"
  139. #124  "Over loaded methods must be of same format"
  140. #125  "INHERIT and METHODTAB only in the start of a structure"
  141. #126  "Methods must be open procedures/functions"
  142. #127  "VIRTUAL only in connection with structure methods"
  143. #128  "CONSTRUCTOR only in connection with structure methods"
  144. #129  "Only one CONSTRUCTOR in a structure"
  145. #130  "The EXPORTed name is not defined"
  146.  
  147. /* General errors */
  148. #131  "System error"
  149. #132  "Error"
  150.